home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2006 December / PCWDEC06.iso / Software / Trial / Paint Shop Pro XI / Data1.cab / _ACC1468D93BF40538B14213A027FEB5E < prev    next >
Encoding:
Text File  |  2006-08-04  |  913 b   |  34 lines

  1. from PSPApp import *
  2.  
  3. def ScriptProperties():
  4.     return {
  5.         'Author': u'Corel Corporation',
  6.         'Copyright': u'Copyright (c) 2004 Corel Corporation  All rights reserved.',
  7.         'Description': u'',
  8.         'Host': u'Paint Shop Pro 9',
  9.         'Host Version': u'9.00'
  10.         }
  11.  
  12. def Preset_Texture():
  13.     return {
  14.         'Ambience': 0, 
  15.         'Angle': 243, 
  16.         'Color': (255,255,255), 
  17.         'Depth': 50, 
  18.         'Elevation': 31, 
  19.         'Intensity': 50, 
  20.         'Shininess': 50, 
  21.         'Size': 400, 
  22.         'Smoothness': 40, 
  23.         'TextureName': u'Corel_15_012', 
  24.         'GeneralSettings': {
  25.             'ExecutionMode': App.Constants.ExecutionMode.Default, 
  26.             'AutoActionMode': App.Constants.AutoActionMode.Match
  27.             }
  28.         }
  29.  
  30. def Do(Environment):
  31.     # Texture
  32.     App.Do( Environment, 'Texture',         Preset_Texture())
  33.  
  34.